home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 4 / PC World Interactive 4.iso / online / appbar.EXE / cppsrc / NewApp.h < prev    next >
C/C++ Source or Header  |  1996-08-11  |  971b  |  48 lines

  1. // NewApp.h : header file
  2. //
  3.  
  4. #ifndef NEWAPP_H
  5. #define NEWAPP_H
  6.  
  7. /////////////////////////////////////////////////////////////////////////////
  8. // NewApp dialog
  9.  
  10. class NewApp : public CDialog {
  11. // Construction
  12. public:
  13.     NewApp(CWnd* pParent = NULL, hack *ph = NULL);   // standard constructor
  14.  
  15. // Dialog Data
  16.     //{{AFX_DATA(NewApp)
  17.     enum { IDD = IDD_NEWAPP };
  18.         // NOTE: the ClassWizard will add data members here
  19.     //}}AFX_DATA
  20.  
  21.  
  22. // Overrides
  23.     // ClassWizard generated virtual function overrides
  24.     //{{AFX_VIRTUAL(NewApp)
  25.     //}}AFX_VIRTUAL
  26.  
  27. // Implementation
  28. protected:
  29.     app_struct *pnewapp;
  30.     menu_struct *menu;
  31.     BOOL isnew;
  32.     hack *phack;
  33.     int index;
  34.     int check_button;
  35.     CWnd *parent;
  36.     void inline ab_message(char *msg);
  37.  
  38.     // Generated message map functions
  39.     //{{AFX_MSG(NewApp)
  40.     virtual void OnOK();
  41.     virtual void OnCancel();
  42.     virtual BOOL OnInitDialog();
  43.     afx_msg void OnBrowse();
  44.     //}}AFX_MSG
  45.     DECLARE_MESSAGE_MAP()
  46. };
  47.  
  48. #endif